home *** CD-ROM | disk | FTP | other *** search
/ Sun Solutions 2000 #2 / Sun Solutions CD (Volume 2 2000)(Special Focus - Java Technologies)(Disc 1).ISO / products / Software / VisibleSystemsCorporation / _install / install.demosh next >
Text File  |  2000-03-17  |  645b  |  20 lines

  1. #!/bin/sh
  2. # currently company dir is manually placed-should change
  3.  
  4. COMPANY_DIR=$PRODUCT_DIR/Software/VisibleSystemsCorporation
  5. export COMPANY_DIR
  6.  
  7. if [ $CDWARE_ENV = "Solaris_1" ];then
  8.         $OPENWINHOME/bin/cmdtool -Wl "Install Trial Software" -Wx large -Ww 80 -Wh 30 -Wp 290 270 $COMPANY_DIR/_install/notOS.sh
  9.  
  10. elif [ $CDWARE_ENV = "Solaris_x86" ]; then
  11.     $OPENWINHOME/bin/cmdtool -Wl "Install Trial Software" -Wx large -Ww 80 -
  12. Wh 30 -Wp 290 270 $COMPANY_DIR/_install/x86launchit.sh 1
  13.  
  14. else
  15.         $OPENWINHOME/bin/cmdtool -Wl "Install Trial Software" -Wx large -Ww 80 -Wh 30 -Wp 290 270 $COMPANY_DIR/_install/sollaunchit.sh 1
  16.  
  17. fi
  18.  
  19. exit 0
  20.